ColumnLayout Property (FlexGridBase<T>)
In This Topic
Gets or sets a JSON string that defines the current column layout." remarks="The column layout string represents an array with the columns and their properties. It can be used to persist column layouts defined by users so they are preserved across sessions, and can also be used to implement undo/redo functionality in applications that allow users to modify the column layout.
Syntax
'Declaration
Public Overridable Property ColumnLayout As System.String
'Usage
Dim instance As FlexGridBase(Of T)
Dim value As System.String
instance.ColumnLayout = value
value = instance.ColumnLayout
public virtual System.string ColumnLayout {get; set;}
public read-write property ColumnLayout: System.String; virtual;
public function get,set ColumnLayout : System.String
public: __property virtual System.string* get_ColumnLayout();
public: __property virtual void set_ColumnLayout(
System.string* value
);
public:
virtual property System.String^ ColumnLayout {
System.String^ get();
void set ( System.String^ value);
}
See Also